home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Megahits 3
/
Megahits 3 (1994)(GTI - Rhein-Main-Soft)(DE)[!].iso
/
module
/
utilities
/
delitracker130
/
rexx
/
dt_random.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-10-14
|
208b
|
19 lines
/* DeliTracker - toggles random */
address 'rexx_DT'
options results
status G rnd
if result == "no" then do
random yes
say "Random is now on..."
end
else do
random no
say "Random is now off..."
end